Dashboard Temp Share Shortlinks Frames API

HTMLify

style.css
Views: 15 | Author: huxn-webdev
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
* {
  box-sizing: border-box;
}

body {
  height: 100vh;
  font-family: sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  margin: 0;
  background: linear-gradient(blueviolet, rgb(79, 21, 134));
}

#insert {
  background: white;
  padding: 50px;
}

.key {
  border: 2px solid #ccc;
  background-color: rgba(137, 43, 226, 0.767);
  border: none;
  color: white;
  display: inline-flex;
  align-content: center;
  font-size: 20px;
  font-weight: bold;
  padding: 20px;
  flex-direction: column;
  margin: 10px;
  min-width: 150px;
  position: relative;
}

/* JavaScript */
.key small {
  position: absolute;
  top: -24px;
  left: 0;
  text-align: center;
  width: 100%;
  color: #555;
  font-size: 14px;
}